Fix formatting by removing extra line break#196
Conversation
Removed an extra line break in the README.
|
There was a problem hiding this comment.
Code Review
This pull request modifies the README.md file by relocating a line break tag within the badges section. A review comment suggests that adding a hardcoded
tag can disrupt the layout across different screen sizes and recommends allowing the badges to flow naturally for better responsiveness.
| <img src="https://img.shields.io/badge/python-3.11+-blue?logo=python&logoColor=white" alt="Python 3.11+"/> | ||
| <img src="https://img.shields.io/badge/license-BSD--3--Clause-green" alt="BSD-3 License"/> | ||
| <img src="https://img.shields.io/badge/FastAPI-00C7B7?logo=fastapi&logoColor=white" alt="FastAPI"/> | ||
| <br/> |
There was a problem hiding this comment.
The addition of a hardcoded <br/> tag here forces a line break that can disrupt the layout on different screen sizes. For instance, on mobile devices, the badges may wrap naturally, and on wider screens, this forced break creates an unnecessary split. It is better to allow the badges to flow naturally within the centered container. Since the other badges are already on separate lines in the source, they will be rendered with appropriate spacing automatically.
Removed an extra line break in the README.